Print out the rustc version before each build
authorAlex Crichton <alex@alexcrichton.com>
Wed, 27 Aug 2014 00:21:15 +0000 (17:21 -0700)
committerAlex Crichton <alex@alexcrichton.com>
Wed, 27 Aug 2014 00:21:15 +0000 (17:21 -0700)
Makefile.in

index b88e3f477f9811f5c6eeca92fb97db2bd50083fa..c9de8ceab7d01f4b91f9938e6787531c429114ba 100644 (file)
@@ -64,6 +64,7 @@ all: $(foreach target,$(CFG_TARGET),cargo-$(target))
 
 define CARGO_TARGET
 cargo-$(1): $$(CARGO)
+       $$(CFG_RUSTC) -v
        $$(CARGO) build --target $(1) $$(OPT_FLAG) $$(ARGS)
 endef
 $(foreach target,$(CFG_TARGET),$(eval $(call CARGO_TARGET,$(target))))